home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Utility / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-20  |  302 b   |  22 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: a2d hooks1 istr tag1 uptime
  4.  
  5. a2d: a2d.c
  6.     sc link $(CFLAGS) $@
  7.  
  8. hooks1: hooks1.c
  9.     sc link $(CFLAGS) $@
  10.  
  11. istr: istr.c
  12.     sc link $(CFLAGS) $@
  13.  
  14. tag1: tag1.c
  15.     sc link $(CFLAGS) $@
  16.  
  17. uptime: uptime.c
  18.     sc link $(CFLAGS) $@
  19.  
  20. clean:
  21.     -delete \#?.(o|lnk)
  22.